home *** CD-ROM | disk | FTP | other *** search
- HIMNOTES.doc
- 12/01/88
-
-
- For Version 1.1
-
-
- 1. All examples in the manual refer to <malloc.h>. This is the filename
- for Microsoft C. The filename for Turbo C is <alloc.h>.
-
- 2. The Turbo compiler is touchy about using a pointer to malloc() as the
- argument to wninit() and lminit(). Since these functions need a
- pointer to a routine which returns a char pointer, use this cast
- when specifying malloc:
-
- (char *(*)())malloc
-
- Example:
-
- lminit((char *(*)())malloc,free);
-
-